home *** CD-ROM | disk | FTP | other *** search
/ Amiga News 95 / Amiga News 95.iso / dpat / dpat20 / installation.francais < prev    next >
AmigaDOS Script File  |  1992-12-26  |  3KB  |  83 lines

  1. .key param
  2.  
  3. ;here is DP Managing 3.0 script installation
  4.  
  5. ;Author : David Scrève
  6. ;Version : 3.0
  7. ;Revision : 7.0
  8. ;Date : 92-12-22
  9. ;size : 2914 octets
  10.  
  11. ; CopyRight David Scrève © 1992
  12. ; All Rights Reserved.
  13.  
  14. ;Failat 20
  15.  
  16. ;this script must be execute from DF0: with a complete OS 2.04
  17.  
  18. echo "Installation de DP Managing 3.0 dans : "<param>
  19. echo "Copyright David Scrève © 1992"
  20. echo "All Rights Reserved."
  21. echo "Ce programme shareware. Son usage est prohibé si vous n'êtes pas"
  22. echo "enregistré ou si vous ne l'avez pas obtenu par shareware compensé."
  23. Ask  "Voulez-vous continuer (Y/N) ?"
  24. if WARN
  25.     Version >NIL: exec.library 37
  26.     If WARN
  27.         Echo "DP Managing nécessite un Kickstart V37 ou plus : installation impossible."
  28.         echo "Installation abandonnée..."
  29.        else
  30.         Version >NIL: LIBS:reqtools.library
  31.         If NOT ERROR
  32.              Echo "Version de reqtools.library déjà installée:"
  33.              Version LIBS:reqtools.library
  34.              Echo ""
  35.         EndIf
  36.         Ask "Install version special Kickstart 2.0 de reqtools.library (38.810) ?"
  37.             If WARN
  38.                  Copy ":libs/reqtools.library" LIBS:reqtools.library
  39.                  Avail >NIL: FLUSH
  40.                  Echo "*nreqtools.library (version pour 2.0) installée."
  41.             EndIf
  42.         Avail >NIL: FLUSH
  43.       cd "<param>"
  44.  
  45.       makedir "DP Managing" >Nil:
  46.       copy df0:Icon/directory.info "DP Managing.info"
  47.       cd "DP Managing"
  48.       copy df0:muchmore c:muchmore
  49.       copy "df0:documentation/DP Managing.francais.info" "DP Managing.doc.info"
  50.       copy "df0:documentation/DP Managing.francais" "DP Managing.doc"
  51.       copy "df0:UserStyle.doc" "UserStyle.doc"
  52.       copy "df0:UserStyle.doc.info" "UserStyle.doc.info"
  53.       copy "df0:UpDate/3.0 UpDate.francais" "3.0 Update.doc"
  54.       copy "df0:UpDate/3.0 UpDate.francais.info" "3.0 UpDate.doc.info"
  55.       copy "df0:Icon/DPManaging_francais.info" "DP Managing.info"
  56.       makedir Adherent >Nil:
  57.       makedir Disque   >Nil:
  58.       makedir Categorie >NIL:
  59.       makedir Tempdir  >NIL:
  60.       cpu check 68020 >NIL:
  61.       if NOT WARN
  62.            echo "MC 68020 ou plus détecté."
  63.             Ask "On installe la version compilée pour 68020 (Y/N) ?"
  64.                 if WARN
  65.                     copy "DP Managing.info" "DP Managing 020.info"
  66.                     delete >NIL: "DP Managing.info"
  67.                     copy "df0:DPManaging 3.0-020" "DP Managing 020"
  68.                    else
  69.                     echo "Installation de la version compilée pou MC 68000..."
  70.                     copy "df0:DPManaging 3.0" "DP Managing"
  71.                 endif
  72.          else
  73.            echo "Pas de coprocesseur arithmétique MC 68020 détecté."
  74.            echo "Installation de la version compilée pou MC 68000..."
  75.            copy "df0:DPManaging 3.0" "DP Managing"
  76.       Endif
  77.       echo "Installation terminée."
  78.    Endif
  79.   else
  80.     echo "Installation abandonnée..."
  81. endif
  82.  
  83.